home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 May / CMCD0504.ISO / Software / Freeware / Programare / gdiplusdelphi / demos / Using Image Encoders and Decoders / Converting a BMP Image to a PNG Image / GDITEST30.dpr next >
Encoding:
Text File  |  2003-04-05  |  189 b   |  14 lines

  1. program GDITEST30;
  2.  
  3. uses
  4.   Forms,
  5.   Unit1 in 'Unit1.pas' {Form1};
  6.  
  7. {$R *.res}
  8.  
  9. begin
  10.   Application.Initialize;
  11.   Application.CreateForm(TForm1, Form1);
  12.   Application.Run;
  13. end.
  14.